home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
UTILITY
/
TASEXAM6.ARJ
/
BETA.TAS
< prev
next >
Wrap
Text File
|
1991-10-26
|
592b
|
22 lines
#index 'sp-500'
#output_file beta.lst
#MAX_QUOTES 260
if quote_count >= 260 then
begin
wBeta = beta('w');
wAlpha = alpha();
sortout(ticker,fullname,wBeta,wAlpha);
tickCount = tickCount + 1;
totalBeta = totalBeta + wBeta;
totalAlpha = totalAlpha + wAlpha;
end;
if last_ticker = 0 then return;
sorton(3,'d');
writeln ('TICKER COMPANY/SECURITY BETA ALPHA');
sortprint('%s %s %6.2f %6.2f\n');
writeln();
writeln(' Total tickers ',int(tickCount));
writeln(' Average Beta ',totalBeta/tickCount);
writeln(' Average Alpha ',totalAlpha/tickCount);